home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-08-23 | 1.1 KB | 44 lines |
- #
- # makefile for directory user-contributed/lbl
- #
-
- # Subdirectories that get made from user-contributed/lbl
- #
- # (subdirectories x11, xview and sun are made indirectly through drivers/X,
- # drivers/XView and drivers/SunView)
-
- #DIRS = lib libscs rlelib tifflib jpeg hips doc hstream
-
- # use this line when running separate from standard HIPS2 distribution
- DIRS = lib libscs rlelib tifflib jpeg hips hstream doc sun x11 xview
-
- TARDIRS = lib libscs rlelib tifflib hips doc x11 xview include sun \
- Configure config.sun4 makefile.hdr makefile.src makefile.tlr \
- README
-
- # for insertion into standard HIPS2 distribution
- TARDIRS2 = lib libscs rlelib tifflib hips doc x11 xview include sun \
- makefile.src
-
- # default action just makes src dirs
-
- all: install
-
- clean clean-all install pristine man doc: doit
- @for d in $(DIRS) ; do \
- ( cd $$d ; echo make $@ on $(HERE)$$d ; \
- make CCS_ROOT=$(TOPDIR)/$(HERE) $(MFLAGS) $@ ) ; \
- done
- @if [ "$@" = "clean-all" ]; then \
- rm -f Makefile; fi
-
- tar: doit
- make clean-all
- tar cvf lbl_hips2.tar $(TARDIRS)
-
- tar2: doit
- make clean
- tar cvf lbl_hips2.tar $(TARDIRS2)
-
- doit:
-